home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Tcl / tclConfig.sh < prev    next >
Encoding:
Text File  |  1996-07-24  |  3.3 KB  |  95 lines

  1. # tclConfig.sh --
  2. # This shell script (for sh) is generated automatically by Tcl's
  3. # configure script.  It will create shell variables for most of
  4. # the configuration options discovered by the configure script.
  5. # This script is intended to be included by the configure scripts
  6. # for Tcl extensions so that they don't have to figure this all
  7. # out for themselves.
  8. #
  9. # The information in this file is specific to a single platform.
  10. #
  11. # SCCS: @(#) tclConfig.sh.in 1.13 96/04/11 09:50:14
  12.  
  13. # Tcl's version number.
  14. TCL_VERSION='7.5'
  15. TCL_MAJOR_VERSION='7'
  16. TCL_MINOR_VERSION='5'
  17.  
  18. # C compiler to use for compilation.
  19. TCL_CC='gcc'
  20.  
  21. # -D flags for use with the C compiler.
  22. TCL_DEFS=' -DHAVE_UNISTD_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TZNAME=1 -DHAVE_TIMEZONE_VAR=1 -DSTDC_HEADERS=1 -Dvfork=fork '
  23.  
  24. # The name of the Tcl library (may be either a .a file or a shared library):
  25. TCL_LIB_FILE=libtcl7.5.a
  26.  
  27. # Additional libraries to use when linking Tcl.
  28. TCL_LIBS='-ldl  -lieee -lm'
  29.  
  30. # Top-level directory in which Tcl's platform-independent files are
  31. # installed.
  32. TCL_PREFIX='/usr/local'
  33.  
  34. # Top-level directory in which Tcl's platform-specific files (e.g.
  35. # executables) are installed.
  36. TCL_EXEC_PREFIX='/usr/local'
  37.  
  38. # Flags to pass to cc when compiling the components of a shared library:
  39. TCL_SHLIB_CFLAGS='-fPIC'
  40.  
  41. # Base command to use for combining object files into a shared library:
  42. TCL_SHLIB_LD='gcc -shared'
  43.  
  44. # Either '$LIBS' (if dependent libraries should be included when linking
  45. # shared libraries) or an empty string.  See Tcl's configure.in for more
  46. # explanation.
  47. TCL_SHLIB_LD_LIBS=''
  48.  
  49. # Suffix to use for the name of a shared library.
  50. TCL_SHLIB_SUFFIX='.so'
  51.  
  52. # Library file(s) to include in tclsh and other base applications
  53. # in order to provide facilities needed by DLOBJ above.
  54. TCL_DL_LIBS='-ldl'
  55.  
  56. # Flags to pass to the compiler when linking object files into
  57. # an executable tclsh or tcltest binary.
  58. TCL_LD_FLAGS='-rdynamic'
  59.  
  60. # Flags to pass to ld, such as "-R /usr/local/tcl/lib", that tell the
  61. # run-time dynamic linker where to look for shared libraries such as
  62. # libtcl.so.  Used when linking applications.  Only works if there
  63. # is a variable "LIB_INSTALL_DIR" defined in the Makefile.
  64. TCL_LD_SEARCH_FLAGS=''
  65.  
  66. # Additional object files linked with Tcl to provide compatibility
  67. # with standard facilities from ANSI C or POSIX.
  68. TCL_COMPAT_OBJS=''
  69.  
  70. # Name of the ranlib program to use.
  71. TCL_RANLIB='ranlib'
  72.  
  73. # String to pass to linker to pick up the Tcl library from its
  74. # build directory.
  75. TCL_LIB_SPEC='-L/usr/local/lib -ltcl7.5'
  76.  
  77. # Indicates whether a version numbers should be used in -l switches
  78. # (if 1, use switches like -ltcl7.5;  if 0, use switches like -ltcl).
  79. # 0 is required under SunOS 4.1, for example.
  80. TCL_LIB_VERSIONS_OK='ok'
  81.  
  82. # String that can be evaluated to generate the part of a shared library
  83. # name that comes after the "libxxx" (includes version number, if any,
  84. # extension, and anything else needed).  Depends on the variables
  85. # VERSION and SHLIB_SUFFIX.  On most UNIX systems this is
  86. # ${VERSION}.${SHLIB_SUFFIX}.
  87. TCL_SHARED_LIB_SUFFIX='${VERSION}${SHLIB_SUFFIX}'
  88.  
  89. # String that can be evaluated to generate the part of an unshared library
  90. # name that comes after the "libxxx" (includes version number, if any,
  91. # extension, and anything else needed).  Depends on the variables
  92. # VERSION.  On most UNIX systems this is ${VERSION}.a.
  93. TCL_UNSHARED_LIB_SUFFIX='${VERSION}.a'
  94.